home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi2 / delphite.exe / data.z / QBFDEMO.DPR < prev    next >
Encoding:
Text File  |  1996-08-12  |  272 b   |  15 lines

  1. program QbfDemo;
  2.  
  3. uses
  4.   Forms,
  5.   QBFForm in 'QBFForm.pas' {QueryForm},
  6.   RsltForm in 'RsltForm.PAS' {ResultForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TQueryForm, QueryForm);
  12.   Application.CreateForm(TResultForm, ResultForm);
  13.   Application.Run;
  14. end.
  15.